home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / TURB_VIS / TCYBER25 / CYANI.ZIP / CACMDS.PAS < prev    next >
Pascal/Delphi Source File  |  1994-10-20  |  722b  |  46 lines

  1. {
  2. Turbo Vision CyberTools 2.5
  3. (C) 1994 Steve Goldsmith
  4. All Rights Reserved
  5.  
  6. Commands used by CyberAnimate app.
  7. }
  8.  
  9. unit CACmds;
  10.  
  11. {$I APP.INC}
  12.  
  13. interface
  14.  
  15. const
  16.  
  17. {app commands}
  18.  
  19.   cmLoadFont    = 1000;
  20.   cmLoadPCX2    = 1001;
  21.   cmLoadPCX256  = 1002;
  22.   cmPlaySnip    = 1003;
  23.   cmMakeSnip    = 1004;
  24.   cmDirChange   = 1005;
  25.   cmRestoreDef  = 1006;
  26.   cmScreenOpts  = 1007;
  27.   cmAdjPal      = 1008;
  28.   cmSaveConfig  = 1009;
  29.   cmLoadConfig  = 1010;
  30.   cmAbout       = 1011;
  31.   cmViewDoc     = 1012;
  32.   cmColors      = 1013;
  33.   cmNewFileList = 1014;
  34.   cmFileBrowse  = 1015;
  35.   cmAddFile     = 1016;
  36.  
  37. {dialog commands}
  38.  
  39.   cmStep = 1100;
  40.   cmPlay = 1101;
  41.   cmPCX  = 1102;
  42.  
  43. implementation
  44.  
  45. end.
  46.